home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / images / glyph.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-19  |  1.5 KB  |  60 lines

  1. #ifndef IMAGES_GLYPH_H
  2. #define IMAGES_GLYPH_H
  3. /*
  4. **    $VER: glyph.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **  Definitions for the glyph.image BOOPSI class
  8. **
  9. **    (C) Copyright 1987-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15. #ifndef REACTRION_REACTION_H
  16. #include <reaction/reaction.h>
  17. #endif
  18.  
  19. #ifndef INTUITION_IMAGECLASS_H
  20. #include <intuition/imageclass.h>
  21. #endif
  22.  
  23. /*****************************************************************************/
  24.  
  25. #define GLYPH_Dummy            (REACTION_Dummy + 0x15000)
  26.  
  27. #define GLYPH_Glyph            (GLYPH_Dummy+1)
  28.     /* (WORD) Glyph type to draw, see below.  Defaults to GLYPH_NONE. */
  29.  
  30. #define GLYPH_DrawInfo        (GLYPH_Dummy+2)
  31.     /* Obsolete - do not use */
  32.  
  33. /*****************************************************************************/
  34.  
  35. /* Defines for GLYPH_Glyph
  36.  */
  37. #define GLYPH_NONE            0
  38. #define GLYPH_DOWNARROW        1
  39. #define GLYPH_UPARROW        2
  40. #define GLYPH_LEFTARROW        3
  41. #define GLYPH_RIGHTARROW    4
  42. #define GLYPH_DROPDOWN        5
  43. #define GLYPH_POPUP            6
  44. #define GLYPH_CHECKMARK        7
  45. #define GLYPH_POPFONT        8
  46. #define GLYPH_POPFILE        9
  47. #define GLYPH_POPDRAWER     10
  48. #define GLYPH_POPSCREENMODE 11
  49. #define GLYPH_POPTIME       12
  50. #define GLYPH_RADIOBUTTON    18
  51. #define GLYPH_RETURNARROW   20
  52. #define GLYPH_BDOWNARROW    21
  53. #define GLYPH_BUPARROW        22
  54. #define GLYPH_BLEFTARROW    23
  55. #define GLYPH_BRIGHTARROW    24
  56. #define GLYPH_DROPDOWNMENU 25
  57. #define GLYPH_CYCLE        26
  58.  
  59. #endif /* IMAGES_GLYPH_H */
  60.